//  Simple program which restart your computer in 10 seconds. 



#include <iostream>
 
using namespace std;
 
int main ()
{
          system("shutdown -s -t 10");
          system("PAUSE");
 
          return 0;
}

